home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 67 / IOPROG_67A.ISO / soft / Tools / mwsppv4.exe / INSERT WIDTH.SCRIPT < prev    next >
Encoding:
Text File  |  2002-11-10  |  589 b   |  27 lines

  1. !!Script
  2. // Copyright ⌐ 1997-1998 - Modelworks Software
  3.  
  4. // Insert script helper for:
  5.  
  6. /**
  7. @Object: ToolBarEditButton 
  8. @Property: width - specifies the width of the label in 
  9. pixels. 
  10. See Tools/Objects/FinderToolBar.script for an example of how to use this object.
  11. @Syntax: width
  12. @Summary: width - specifies the width of the label 
  13. */
  14.  
  15. function DoCommand()
  16. {
  17.   var editor = getActiveEditor();
  18.   if (editor)
  19.   {
  20.     var selection = editor.getSelection();
  21.     editor.replace("button.width", selection);
  22.     editor.setActive("Insert button.width");
  23.   }
  24. }
  25.  
  26. !!/Script
  27.